home *** CD-ROM | disk | FTP | other *** search
- /*
- *--- PReflect.cpp --------------------------------------------------------
- * Copyright (c) 1995-96 Adobe Systems Incorporated. All rights reserved.
- * Created on Sun, Oct 22, 1995 @ 4:19 PM by Paul Ferguson.
- *
- * Description: For notes about this class, refer to the
- * PCL documentation file PReflect.html
- *-------------------------------------------------------------------------
- */
-
- #include "PReflect.h"
- #include "PRequestBuf.h"
- #include "PCommand.h"
-
- const size_t REQUEST_SIZE = 4;
-
- PReflect::PReflect(short cHandle, short cAxis)
- {
- short x[2];
- x[0] = cHandle;
- x[1] = cAxis;
- PCommand(pm_reflect, x, REQUEST_SIZE);
- }
-
- // end of PReflect.cpp
-